body,
html {
    height: 100%;
    margin: 0;
    margin-right: 20px;
}

/* background */
#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    /* ⬅ این باعث میشه رویدادهای موس ازش عبور کنن */
}

body {
    background-color: #202031;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}


.signup-card {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
    transform-origin: center;
    width: 405.5px;
    height: 550px;
    background-color: #fff;
}

.title {
    font-weight: 800;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    font-size: 28px;
    margin: 10px 0 30px 0;
}

.input-div {
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.input {
    box-shadow: 0px 0px 20px rgba(143, 143, 143, 0.5);
    border-radius: 50px;
    background-color: white;
    border: 2px solid rgba(216, 216, 216, 0.68);
    margin: 3px;
    width: 100%;
    display: flex;
    box-sizing: border-box;
    border: none;
    outline: none;
    transition: all 0.75s ease;
    border-radius: 50px;
    border: none;
    color: black;
    font-weight: 800;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    outline: 0px !important;
    box-sizing: border-box;
    padding: 15px 15px;
    transition: all 1s ease;
    margin: 3px;
}

.input:focus {
    border: none;
    transform: translateY(-5px);
}

.signup-button {
    background-color: teal;
    outline: none;
    margin-top: 25px;
    box-shadow: 8px 8px 10px rgba(143, 143, 143, 0.5);
    padding: 12px;
    cursor: pointer;
    border: none;
    border-radius: 30px;
    width: 100%;
    color: white;
    font-weight: 800;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    transition: all 0.75s ease;
}

.signup-button:hover {
    transform: translateY(-5px);
    background-color: #165F5F;
}

.login {
    margin-top: 20px;
    font-size: 11px;
    color: black;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 800;
    cursor: pointer;
    margin-left: 5px;
}

.login-click {
    color: teal;
    font-size: 13px;
}

.login-click:hover {
    color: rgb(0, 83, 83);
    text-decoration: underline;
}

.terms {
    font-size: 12px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 800;
    margin-left: 5px;
    margin-top: 17px !important;
    display: flex;
    align-items: center;
}

.terms-click {
    text-decoration: none;
}

.terms-click:hover {
    text-decoration: underline;
}